:root {
    --mainTint: #ccc;
    --gray1: #e7e7e7;
    --gray2: #252734;
    --gray3: #efefef;
}

::-moz-selection {
    background-color: #046560;
    color: white;
}

::selection {
    background-color: #046560;
    color: white;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Mozilla Headline', sans-serif;
    background-color: #046560;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nata Sans', sans-serif;
}

#background {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    z-index: -1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.blur {
    position: absolute;
    width: 20px;
    height: 100%;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
}

.content-wrapper {
    position: absolute;
    width: 55%;
    max-width: 800px;
    height: 100%;
    left: 20px;
    overflow: hidden;
    background-color: rgba(225, 233, 240, 0.84);
    border-right: 1px solid #e4e4e4b0;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);

    -webkit-transition: 0.5s ease;

    -o-transition: 0.5s ease;

    transition: 0.5s ease;
}

.content-wrapper .page {
    position: absolute;
    height: calc(100% - 100px);
    width: 100%;
    top: 0%;
    padding-top: 100px;

    -webkit-transition: 0.25s cubic-bezier(.08,.82,.17,1);

    -o-transition: 0.25s cubic-bezier(.08,.82,.17,1);

    transition: 0.25s cubic-bezier(.08,.82,.17,1);
}

.content-wrapper .page.up {
    top: -90%;
}

.content-wrapper .page.down {
    top: 90%;
}

.content-wrapper .page.up .bar, .content-wrapper .page.down .bar {
    opacity: 0;
}

.content-wrapper .page h1 {
    color: #046560;
    font-size: 1.9em;
    margin: 0px 80px 0px 0px;
    text-align: right;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    
    opacity: 0;
    -webkit-animation: h1-enter 0.6s ease-out forwards;
            animation: h1-enter 0.6s ease-out forwards;
}

@-webkit-keyframes h1-enter {
    from {
        opacity: 0;
        -webkit-transform: translateY(-6px);
                transform: translateY(-6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes h1-enter {
    from {
        opacity: 0;
        -webkit-transform: translateY(-6px);
                transform: translateY(-6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}


.content-wrapper .page h2 {
    font-style: italic;
    font-size: 0.65em;
    font-weight: 200;
    font-family: 'Mozilla Headline', sans-serif;
    text-align: right;
    margin: 5px 80px 10px 0px;
    color: rgba(90, 110, 96, 0.619);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.content-wrapper .page h2.animate {
    opacity: 0;
    -webkit-animation: menu-enter 0.3s ease forwards;
            animation: menu-enter 0.3s ease forwards;
}

.content-wrapper .page h2:first-of-type {
    margin: 5px 80px 30px 0px;
}

.content-wrapper .page .button-wrapper {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.content-wrapper .page .button-wrapper .button {
    width: calc(70% - 24px);
    background-color: rgba(255, 255, 255, 0.248);
    float: right;
    margin-right: 80px;
    text-align: right;
    padding: 8px 6px 8px 30px;
    font-size: 0.8em;
    border: 1px solid rgb(209, 217, 213);
    border-bottom: 1px solid rgb(218, 222, 220, 0.5);
    border-top: none;
    color: #1e595670;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    position: relative;
}

.content-wrapper .page .button-wrapper .button.animate {
    -webkit-animation: menu-enter 0.3s ease forwards;
            animation: menu-enter 0.3s ease forwards;
    opacity: 0;
}

@-webkit-keyframes menu-enter {
    from {
        opacity: 0;
        -webkit-transform: translateY(3px);
                transform: translateY(3px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes menu-enter {
    from {
        opacity: 0;
        -webkit-transform: translateY(3px);
                transform: translateY(3px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

.content-wrapper .page .button-wrapper .button.first {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top: 1px solid rgb(218, 222, 220);
}

.content-wrapper .page .button-wrapper .button.last {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom: 1px solid rgb(218, 222, 220);
}

.content-wrapper .page .button-wrapper .button span, .content-wrapper .page .button-wrapper .button a {
    margin-right: 5px;
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

.content-wrapper .page .button-wrapper .button i {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #4f66514a;
}

.content-wrapper .page .text {
    width: 70%;
    background-color: rgba(255, 255, 255, 0.248);
    float: right;
    margin-right: 80px;
    margin-bottom: 30px;
    padding: 6px;
    font-size: 0.8em;
    border: 1px solid rgb(209, 217, 213);
    border-top: none;
    border-radius: 4px;
    color: #00000070;
    text-align: justify;
}

.content-wrapper .page .text img {
    width: 75px;
    opacity: 0.8;
    border-radius: 3px;
    margin: auto;
    display: block;
    border: 1px solid #b9b9b959;
}

#dot {
    background-color: #046560;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 55px;
    top: 106px;
    margin-top: 9px;
    border-radius: 100%;
    z-index: 1;
    opacity: 1;

    -webkit-transition: 0.3s cubic-bezier(.51,-0.08,.48,1.1);

    -o-transition: 0.3s cubic-bezier(.51,-0.08,.48,1.1);

    transition: 0.3s cubic-bezier(.51,-0.08,.48,1.1);

    -webkit-animation: dot-enter 1s cubic-bezier(.59,.57,.34,1);

            animation: dot-enter 1s cubic-bezier(.59,.57,.34,1);
}

@-webkit-keyframes dot-enter {
    from {
        top: 10px;
        opacity: 0;
    }
    to {
        top: 106px;
        opacity: 1;
    }
}

@keyframes dot-enter {
    from {
        top: 10px;
        opacity: 0;
    }
    to {
        top: 106px;
        opacity: 1;
    }
}

#dot.blocked {
    top: 106px !important;
}

.content-wrapper .page .bar {
    height: 3px;
    width: 100%;
    margin-bottom: 30px;
    background: #c9c60e;
    background: -o-linear-gradient(left, rgba(201, 198, 14, 1) 4%, rgba(10, 171, 53, 1) 4%, rgba(10, 171, 53, 1) 20%, rgba(4, 101, 96, 1) 20%, rgba(4, 101, 96, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(4%, rgba(201, 198, 14, 1)), color-stop(4%, rgba(10, 171, 53, 1)), color-stop(20%, rgba(10, 171, 53, 1)), color-stop(20%, rgba(4, 101, 96, 1)), to(rgba(4, 101, 96, 1)));
    background: linear-gradient(90deg, rgba(201, 198, 14, 1) 4%, rgba(10, 171, 53, 1) 4%, rgba(10, 171, 53, 1) 20%, rgba(4, 101, 96, 1) 20%, rgba(4, 101, 96, 1) 100%);
    margin-top: 50px;
    float: right;
}

.content-wrapper .page #navigation {
    position: relative;
    width: 100%;
    bottom: 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    padding: 10px 0px;
    overflow: hidden;
    pointer-events: none;

    z-index: 1;
}

.content-wrapper .page #navigation i {
    text-align: center;
    width: 100%;
    left: 0px;
    opacity: 0.2;

    -webkit-transition: 0.5s ease-out;

    -o-transition: 0.5s ease-out;

    transition: 0.5s ease-out;
}

.content-wrapper .page #navigation span {
    position: absolute;
    width: 100%;
    left: 0px;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.5s 0.1s ease;
    -o-transition: 0.5s 0.1s ease;
    transition: 0.5s 0.1s ease;
}

.content-wrapper .page #navigation div {
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 2px);
    background-color: #f7f7f7;
    top: 0px;
    z-index: -1;
    left: 20px;
    border-radius: 4px;
    border: 1px solid #f9f9f9;

    opacity: 0;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}

.content-wrapper .page #navigation.bubble div {
    opacity: 1;
}

.content-wrapper .page #navigation.goback {
    cursor: pointer;
    position: fixed;
    bottom: unset;
    top: 10px;
    pointer-events: auto;
}

.content-wrapper .page #navigation.goback i {
    rotate: 180deg;
    margin-left: -22px;
    opacity: 0.4;
}

.content-wrapper .page #navigation.goback span {
    opacity: 0.4;
    margin-left: 22px;
}

.copyright {
    position: fixed;
    rotate: 270deg;
    background-color: white;
    font-size: 0.6em;
    padding: 0px 2px 2px 2px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    bottom: 50px;
    right: -24px;
    opacity: 0.4;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    -webkit-transition: 0.05s ease;
    -o-transition: 0.05s ease;
    transition: 0.05s ease;
    color: black;
    text-decoration: none;
}

.copyright:hover {
    right: -22px;
}

@media only screen and (max-width: 900px)  {
    .blur {
        display: none;
    }

    .content-wrapper {
        width: 100%;
        left: 0px;
        border: none;
    }
}

@media only screen and (max-width: 450px) {
    .content-wrapper .page h1, .content-wrapper .page {
        width: calc(100% - 40px);
        padding: 100px 20px 0px 20px;
    }

    .content-wrapper .page h1 {
        width: 100%;
        margin: 0px !important;
        padding: 0px;
    }

    .content-wrapper .page h2 {
        width: 100%;
        margin: 30px 0px 0px 0px !important;
        font-size: 0.7em;
    }

    .content-wrapper .page h1, .content-wrapper .page h2:first-of-type {
        margin-top: 5px !important;
    }

    .content-wrapper .page .button-wrapper .button {
        width: calc(100% - 36px);
        margin: 10px 0px 0px 0px !important;
        padding: 15px 6px 15px 30px;
        border-radius: 6px;
        border: 1px solid rgba(209, 217, 213, 0.63);
        color: #1e59569b;
    }

    .content-wrapper .page #navigation {
        left: 0px;
    }

    .content-wrapper .page .button-wrapper .button i {
        top: 17px;
    }

    .content-wrapper .page .text {
        border-radius: 6px;
        width: calc(100% - 36px);
        margin: 10px 0px 0px 0px !important;
        padding: 25px 6px 25px 30px;
    }

    .content-wrapper .page #navigation i {
        opacity: 0;
    }

    #dot {
        right: unset;
        left: 20px;
        margin-top: 12px;
    }
}